.sidebarpic {
  background: #ffffff;
  border-radius: 2px;
}

.sidebarpic .header {
  display: flex;
  align-items: center;
  /*margin-bottom: 10px;*/
}

.sidebarpic .header .img {
  width: 23px;
  height: 23px;
}

.sidebarpic .header .title {
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #073E73;
}

.sidebarpic .pictxtitem {
  width: 228px;
  min-height: 70px;
  border-radius: 2px;
  border: 1px solid #eeeeee;
}
.sidebarpic .pictxtitem:hover{
	box-shadow: 0 0 5px rgb(0 0 0 / 5%);
}


.sidebarpic .pictxtitem .pic {
  width: 228px;
  height: 152px;  
  -moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;transition:all 0.5s;
}
.sidebarpic .pictxtitem .pic:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all cubic-bezier(0, 0.88, 1, -0.07) 2s;
  -o-transition: all cubic-bezier(0, 0.88, 1, -0.07) 2s;
  transition: all cubic-bezier(0, 0.88, 1, -0.07) 2s;
}

.sidebarpic .pictxtitem .txt {
  padding: 0 12px;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 25px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 11px;
}

.sidebarpic .pictxtitem .txt:hover {
  color: #1a5ac3 !important;
}
.sidebarpic .pictxtitem:not(:last-child){
  margin-bottom: 20px;
}